import { cn } from "@vercel/geistdocs/utils"; import type { ReactNode } from "react"; interface OneTwoSectionProps { children?: ReactNode; className?: string; description: string; title: string; } export const OneTwoSection = ({ className, title, description, children, }: OneTwoSectionProps) => (
{description}